Issue Closed. #1157
Answered
by
lwhite1
ShubhamDalmia
asked this question in
Q&A
Issue Closed.
#1157
Replies: 2 comments
-
I don’t see anything to suggest this is a tablesaw issue. Have you looked
at
https://bugs.openjdk.org/browse/JDK-8192647
You might check to ensure the runner config matches the jar environment,
and maybe try a newer/different Java version.
Other than that all I can say is maybe the table is too big for the memory
available.
Sorry that’s about all I can say with the information provided.
…On Sat, Oct 8, 2022 at 7:11 AM ShubhamDalmia ***@***.***> wrote:
Table table;
table = Table.create();
table = Table.read().file(outputCsv);
This is the thing which I'm using.
—
Reply to this email directly, view it on GitHub
<#1157 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AA2FPAQW63JUW4ENN4CW7YTWCFJGDANCNFSM6AAAAAARAGSM6I>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
0 replies
-
Unfortunately, I cannot debug a garbage collection deadlock based on a few
print outs. Even if i could Tablesaw does not control GC threads.
FWIW, up above you say you're using Tablesaw 43.0, but the pom says 41.0.
Maybe try 43,
…On Sun, Oct 9, 2022 at 10:36 PM ShubhamDalmia ***@***.***> wrote:
Everything else seems to be working fine.
I tried loaded small csv file to Tablesaw as well, but it still didn't
workout.
Java versison I was using was Java11.
Now, I even tried on :
java --version
openjdk 17.0.4.1 2022-08-12 LTS
OpenJDK Runtime Environment Corretto-17.0.4.9.1 (build 17.0.4.1+9-LTS)
OpenJDK 64-Bit Server VM Corretto-17.0.4.9.1 (build 17.0.4.1+9-LTS, mixed
mode, sharing)
Yet, it is not working.
I ran this basic program :
` public static void main(String... a) throws Exception {
Table table;
File outputCsv = new File("/Users/shubhamdalmia/Downloads/MOCK_DATA.csv");
table = Table.read().file(outputCsv);
System.out.println(table.columnNames());
System.out.println(table.rowCount());
}`
The file size if around 12KB. Again it ran fine with intelij but jar
didn't.
Pom.xml
<dependency> <groupId>tech.tablesaw</groupId>
<artifactId>tablesaw-core</artifactId> <version>0.41.0</version>
</dependency> <dependency> <groupId>tech.tablesaw</groupId>
<artifactId>tablesaw-json</artifactId> <version>0.41.0</version>
</dependency>
—
Reply to this email directly, view it on GitHub
<#1157 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AA2FPAVHB5NHGCUP2IGCVZDWCN6MJANCNFSM6AAAAAARAGSM6I>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
ShubhamDalmia
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Issue Closed.
Beta Was this translation helpful? Give feedback.
All reactions