asfimport

Results 862 comments of asfimport

[Joris Van den Bossche](https://issues.apache.org/jira/browse/ARROW-12099?focusedCommentId=17312346) / @jorisvandenbossche: `[~malthe]` can you show small example input/output of what you imagine? (as has been clear above, describing it in words doesn't seem sufficient to...

[Joris Van den Bossche](https://issues.apache.org/jira/browse/ARROW-12099?focusedCommentId=17312363) / @jorisvandenbossche: I _assume_ your example starts with a table like the following? ```Java In [100]: table = pa.table({'a': [0, 1, 2], 'b': [[4, 5, 6]]*3})...

[Ian Cook](https://issues.apache.org/jira/browse/ARROW-12099?focusedCommentId=17405371) / @ianmcook: +1 Hive also has an [`explode`](https://cwiki.apache.org/confluence/display/hive/languagemanual+udf#LanguageManualUDF-explode) function that works like this, but it is very difficult to use at a table level—you need to use something...

[Ian Cook](https://issues.apache.org/jira/browse/ARROW-12099?focusedCommentId=17405379) / @ianmcook: I think for the initial implementation, we should limit this to explode only a single ListArray or MapArray column, like: ```Java explode_table(table, 'b') ``` The case...

[SHIMA Tatsuya](https://issues.apache.org/jira/browse/ARROW-12099?focusedCommentId=17447341) / @eitsupi: It seems related to ARROW-8813. tidyr::unnest in R works very well, and it would be great to have this feature available in Arrow.

[Guido Muscioni](https://issues.apache.org/jira/browse/ARROW-12099?focusedCommentId=17541192): (sorry for continuing this old thread, I can open a new issue if necessary) I was working on @jorisvandenbossche  implementation and noticed that it skips the null values....

[Nick Crews](https://issues.apache.org/jira/browse/ARROW-12099?focusedCommentId=17555329): Small tweak to Guido's implementation (thank you for this!): If the table only has the one ListArray or MapArray column, then it crashes. This handles that case: ```python...

Adrien Grand (@jpountz) ([migrated from JIRA](https://issues.apache.org/jira/browse/LUCENE-10383?focusedCommentId=17480370&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-17480370)) I mentioned a potential indexing speedup in the issue description because indexing is what I was looking at, but this could also help search...

Michael McCandless (@mikemccand) ([migrated from JIRA](https://issues.apache.org/jira/browse/LUCENE-2228?focusedCommentId=12802915&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-12802915)) This looks cool! Can you change the .tar.gz file into a patch? EG see here: http://wiki.apache.org/lucene-java/HowToContribute. I think a good place for AESDirectory to...

Peter Karich ([migrated from JIRA](https://issues.apache.org/jira/browse/LUCENE-2228?focusedCommentId=13861923&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-13861923)) What is the state here?