Details
-
Bug
-
Status: Resolved
-
Critical
-
Resolution: Fixed
-
4.0.0
Description
When a JS application depends on `apache-arrow` or any of the ESM variants, Arrow's package.json declares `sideEffects: false` which allows bundlers like Webpack or Rollup to remove all code that's evaluated at the top level of all modules (any code that isn't explicitly imported can be pruned).
However, there are important top-level side effects that Arrow relies on, e.g. for binding methods on types:
So currently, any JS app that uses tree-shaking and depends on `apache-arrow` or the ESM variants will throw if any of those methods are called, e.g. in my case I see `TypeError: e._chunks[t].get is not a function` when calling `table.get`.
Indeed switching to the CJS variants like `@apache-arrow/es2015-cjs` fixes the issue, since the Arrow build does not inject `sideEffects: false` into its package.json for non-ESM variants.
For reference, the `sideEffects: false` logic was introduced in this PR and issue:
https://github.com/apache/arrow/pull/8418/
https://issues.apache.org/jira/browse/ARROW-10255
Attachments
Issue Links
- links to