Tables in Streams?
See original GitHub issueHello,
I didn’t find record of this anywhere in the documentation or looking through some of the issues here, but apologies if someone has already asked about this.
Is it expected that Worksheets created from a Workbook Stream don’t have an .addTable
function? I’m using version 4.1.1. If this is expected, are there any plans to add that functionality? I’m trying to create a scalable process by utilizing streams for its memory advantages, and imo tables are a huge part of Excel’s usefulness for easy data manipulation, so I was surprised to see this isn’t supported.
For reference, I’m initializing the worksheet I’d add the table to with the following code:
var workbook = new Excel.stream.xlsx.WorkbookWriter();
var worksheet = workbook.addWorksheet();
worksheet.addTable // undefined
Issue Analytics
- State:
- Created 3 years ago
- Reactions:10
- Comments:6
Top Results From Across the Web
Change Tracking Using Table Streams
A table stream (also referred to as simply a “stream”) makes a “change table” available of what changed, at the row level, between...
Read more >Streams and Tables in Apache Kafka: A Primer - Confluent
A stream provides immutable data. It supports only inserting (appending) new events, whereas existing events cannot be changed. Streams are ...
Read more >@tables-streams - Architect documentation - Arc Codes
@tables-streams. Define Lambda functions for streaming changes from DynamoDB tables. Respond to insert , update , and destroy events with a handler function ......
Read more >Data stream tables - IBM
For data stream tables, the agent periodically polls the DBMS to see if new events are available, then retrieves them for inclusion in...
Read more >Is it a Table or a Stream? - Lenses Documentation
Therefore, if you have a stream of data and you think of it as the table log, you can construct a table from...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@alvaro-escalante #1885 should address this issue if it gets merged in
I second this. There is no support for tables in the streaming system, but I need to be able to build tables in a streaming fashion? I don’t know enough about the format of the files to know if this is feasible. Is there another way we can achieve this? If addTable() didn’t overwrite existing content but allowed it to be applied to a range, we could reload and apply the table over the top of the streamed rows.