You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import pandas as pd
import numpy as np
# Generate a pandas DataFrame with 200,000 rows
num_rows = 200000
data = {
"id": range(1, num_rows + 1),
"value": np.random.random(size=num_rows),
"category": np.random.choice(['A', 'B', 'C'], size=num_rows),
"timestamp": pd.date_range(start="2022-01-01", periods=num_rows, freq="S"),
}
df = pd.DataFrame(data)
# Display the first few rows of the DataFrame to confirm
df.head()
Describe the bug
Lets say we have a 20w+ rows of dataframe, and I use below methods to ingest to opensearch, the code will just stucked in there for nothing.
How to Reproduce
Generate a hugh dataframe
Trying to write to an index
Expected behavior
No response
Your project
No response
Screenshots
No response
OS
Amazon Linux
Python version
3.11
AWS SDK for pandas version
3.10.1
Additional context
No response
The text was updated successfully, but these errors were encountered: