[FEA] Remove "experimental" warning for ORC struct writer
Is your feature request related to a problem? Please describe.
Based on testing and discussion in #9395 and follow-on testing of cudf.DataFrame.to_orc, I propose that we remove the "experimental" warning around writing struct columns to ORC files.
Describe the solution you'd like Remove the warning
Describe alternatives you've considered None
Additional context Here is a test script, as follow-on to the testing in #9395 used to validate struct support:
import io, random
import cudf
from cudf._fuzz_testing.orc import OrcReader
from cudf._fuzz_testing.utils import compare_dataframe
r = OrcReader(
max_rows=8,
max_columns=8,
max_string_length=8,
)
for x in range(50):
random.seed(x)
try:
pdf, buf = r.generate_input()
df = cudf.read_orc(
io.BytesIO(buf),
)
df.to_orc('temp.orc')
df_read = cudf.read_orc('temp.orc')
compare_dataframe(pdf, df_read)
except RecursionError as err:
print(f"Fuzz testing error in test case {x}: {err}")
This issue has been labeled inactive-30d due to no recent activity in the past 30 days. Please close this issue if no further response or action is needed. Otherwise, please respond with a comment indicating any updates or changes to the original issue and/or confirm this issue still needs to be addressed. This issue will be labeled inactive-90d if there is no activity in the next 60 days.