[jira] [Updated] (CARBONDATA-3234) Unable to read data from carbondata table stored in S3 using Presto running on EMR
[ https://issues.apache.org/jira/browse/CARBONDATA-3234?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] charles horrell updated CARBONDATA-3234: Priority: Blocker (was: Major) > Unable to read data from carbondata table stored in S3 using Presto running > on EMR > -- > > Key: CARBONDATA-3234 > URL: https://issues.apache.org/jira/browse/CARBONDATA-3234 > Project: CarbonData > Issue Type: Bug > Components: presto-integration > Environment: Amazon EMR 5.19 >Reporter: charles horrell >Priority: Blocker > > We are unable to use presto to query a carbondata table stored in S3. > {code:java} > presto:default> select count(*) from test_table; > Query 20190107_135333_00026_8r2c8 failed: tried to access method > org.apache.hadoop.metrics2.lib.MutableCounterLong.(Lorg/apache/hadoop/metrics2/MetricsInfo;J)V > from class org.apache.hadoop.fs.s3a.S3AInstrumentation > > presto:default> select * from test_table; > Query 20190107_135610_00028_8r2c8 failed: tried to access method > org.apache.hadoop.metrics2.lib.MutableCounterLong.(Lorg/apache/hadoop/metrics2/MetricsInfo;J)V > from class org.apache.hadoop.fs.s3a.S3AInstrumentation > {code} > The catalog appears to have been picked up okay as show tables works as > expected as does describing the table it is just when actually trying to > access the data that we see the error. > We configured presto as per the examples here: > [http://carbondata.apache.org/quick-start-guide.html] > Querying from Spark works okay however it is vital for our use case that > presto also works and with S3. > Amazon EMR version 5.19 > Spark 2.3.2 > Hadoop 2.8.5 > Presto 0.212 > > Stack trace from presto server log > {code:java} > 2019-01-07T12:19:57.562Z WARN statement-response-4 > com.facebook.presto.server.ThrowableMapper Request failed for > /v1/statement/20190107_121957_4_k6t5p/1 > java.lang.IllegalAccessError: tried to access method > org.apache.hadoop.metrics2.lib.MutableCounterLong.(Lorg/apache/hadoop/metrics2/MetricsInfo;J)V > from class org.apache.hadoop.fs.s3a.S3AInstrumentation > at > org.apache.hadoop.fs.s3a.S3AInstrumentation.streamCounter(S3AInstrumentation.java:194) > at > org.apache.hadoop.fs.s3a.S3AInstrumentation.streamCounter(S3AInstrumentation.java:216) > at > org.apache.hadoop.fs.s3a.S3AInstrumentation.(S3AInstrumentation.java:139) > at org.apache.hadoop.fs.s3a.S3AFileSystem.initialize(S3AFileSystem.java:174) > at org.apache.hadoop.fs.FileSystem.createFileSystem(FileSystem.java:2669) > at org.apache.hadoop.fs.FileSystem.access$200(FileSystem.java:94) > at org.apache.hadoop.fs.FileSystem$Cache.getInternal(FileSystem.java:2703) > at org.apache.hadoop.fs.FileSystem$Cache.get(FileSystem.java:2685) > at org.apache.hadoop.fs.FileSystem.get(FileSystem.java:373) > at org.apache.hadoop.fs.Path.getFileSystem(Path.java:295) > at > org.apache.carbondata.core.datastore.filesystem.AbstractDFSCarbonFile.(AbstractDFSCarbonFile.java:74) > at > org.apache.carbondata.core.datastore.filesystem.AbstractDFSCarbonFile.(AbstractDFSCarbonFile.java:66) > at > org.apache.carbondata.core.datastore.filesystem.HDFSCarbonFile.(HDFSCarbonFile.java:41) > at > org.apache.carbondata.core.datastore.filesystem.S3CarbonFile.(S3CarbonFile.java:41) > at > org.apache.carbondata.core.datastore.impl.DefaultFileTypeProvider.getCarbonFile(DefaultFileTypeProvider.java:53) > at > org.apache.carbondata.core.datastore.impl.FileFactory.getCarbonFile(FileFactory.java:102) > at > org.apache.carbondata.presto.impl.CarbonTableReader.updateCarbonFile(CarbonTableReader.java:202) > at > org.apache.carbondata.presto.impl.CarbonTableReader.updateSchemaList(CarbonTableReader.java:216) > at > org.apache.carbondata.presto.impl.CarbonTableReader.getSchemaNames(CarbonTableReader.java:189) > at > org.apache.carbondata.presto.CarbondataMetadata.listSchemaNamesInternal(CarbondataMetadata.java:86) > at > org.apache.carbondata.presto.CarbondataMetadata.getTableMetadata(CarbondataMetadata.java:135) > at > org.apache.carbondata.presto.CarbondataMetadata.getTableMetadataInternal(CarbondataMetadata.java:240) > at > org.apache.carbondata.presto.CarbondataMetadata.getTableMetadata(CarbondataMetadata.java:232) > at > com.facebook.presto.spi.connector.classloader.ClassLoaderSafeConnectorMetadata.getTableMetadata(ClassLoaderSafeConnectorMetadata.java:145) > at > com.facebook.presto.metadata.MetadataManager.getTableMetadata(MetadataManager.java:388) > at > com.facebook.presto.sql.analyzer.StatementAnalyzer$Visitor.visitTable(StatementAnalyzer.java:850) > at > com.facebook.presto.sql.analyzer.StatementAnalyzer$Visitor.visitTable(StatementAnalyzer.java:258) > at com.facebook.presto.sql.tree.Table.accept(Table.java:53) > at com.facebook.presto.sql.tree.AstVisitor.pro
[jira] [Updated] (CARBONDATA-3234) Unable to read data from carbondata table stored in S3 with Presto running on EMR
[ https://issues.apache.org/jira/browse/CARBONDATA-3234?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] charles horrell updated CARBONDATA-3234: Description: We are unable to use presto to query a carbondata table stored in S3. {code:java} presto:default> select count(*) from test_table; Query 20190107_135333_00026_8r2c8 failed: tried to access method org.apache.hadoop.metrics2.lib.MutableCounterLong.(Lorg/apache/hadoop/metrics2/MetricsInfo;J)V from class org.apache.hadoop.fs.s3a.S3AInstrumentation presto:default> select * test_table; Query 20190107_135610_00028_8r2c8 failed: tried to access method org.apache.hadoop.metrics2.lib.MutableCounterLong.(Lorg/apache/hadoop/metrics2/MetricsInfo;J)V from class org.apache.hadoop.fs.s3a.S3AInstrumentation {code} The catalog appears to have been picked up okay as show tables works as expected as does describing the table it is just when actually trying to access the data that we see the error. We configured presto as per the examples here: [http://carbondata.apache.org/quick-start-guide.html] Querying from Spark works okay however it is vital for our use case that presto also works and with S3. Amazon EMR version 5.19 Spark 2.3.2 Hadoop 2.8.5 Presto 0.212 was: After carbondata table stored in S3 we are unable to query with presto and get the following error: {code:java} presto:default> select count(*) from test_table; Query 20190107_135333_00026_8r2c8 failed: tried to access method org.apache.hadoop.metrics2.lib.MutableCounterLong.(Lorg/apache/hadoop/metrics2/MetricsInfo;J)V from class org.apache.hadoop.fs.s3a.S3AInstrumentation presto:default> select * test_table; Query 20190107_135610_00028_8r2c8 failed: tried to access method org.apache.hadoop.metrics2.lib.MutableCounterLong.(Lorg/apache/hadoop/metrics2/MetricsInfo;J)V from class org.apache.hadoop.fs.s3a.S3AInstrumentation {code} The catalog appears to have been picked up okay as show tables works as expected as does describing the table it is just when actually trying to access the data that we see the error. We configured presto as per the examples here: [http://carbondata.apache.org/quick-start-guide.html] Querying from Spark works okay however it is vital for our use case that presto also works and with S3. Amazon EMR version 5.19 Spark 2.3.2 Hadoop 2.8.5 Presto 0.212 > Unable to read data from carbondata table stored in S3 with Presto running on > EMR > - > > Key: CARBONDATA-3234 > URL: https://issues.apache.org/jira/browse/CARBONDATA-3234 > Project: CarbonData > Issue Type: Bug > Components: presto-integration > Environment: Amazon EMR 5.19 >Reporter: charles horrell >Priority: Major > > We are unable to use presto to query a carbondata table stored in S3. > {code:java} > presto:default> select count(*) from test_table; > Query 20190107_135333_00026_8r2c8 failed: tried to access method > org.apache.hadoop.metrics2.lib.MutableCounterLong.(Lorg/apache/hadoop/metrics2/MetricsInfo;J)V > from class org.apache.hadoop.fs.s3a.S3AInstrumentation > > presto:default> select * test_table; > Query 20190107_135610_00028_8r2c8 failed: tried to access method > org.apache.hadoop.metrics2.lib.MutableCounterLong.(Lorg/apache/hadoop/metrics2/MetricsInfo;J)V > from class org.apache.hadoop.fs.s3a.S3AInstrumentation > {code} > The catalog appears to have been picked up okay as show tables works as > expected as does describing the table it is just when actually trying to > access the data that we see the error. > We configured presto as per the examples here: > [http://carbondata.apache.org/quick-start-guide.html] > Querying from Spark works okay however it is vital for our use case that > presto also works and with S3. > Amazon EMR version 5.19 > Spark 2.3.2 > Hadoop 2.8.5 > Presto 0.212 -- This message was sent by Atlassian JIRA (v7.6.3#76005)
[jira] [Updated] (CARBONDATA-3234) Unable to read data from carbondata table stored in S3 using Presto running on EMR
[ https://issues.apache.org/jira/browse/CARBONDATA-3234?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] charles horrell updated CARBONDATA-3234: Description: We are unable to use presto to query a carbondata table stored in S3. {code:java} presto:default> select count(*) from test_table; Query 20190107_135333_00026_8r2c8 failed: tried to access method org.apache.hadoop.metrics2.lib.MutableCounterLong.(Lorg/apache/hadoop/metrics2/MetricsInfo;J)V from class org.apache.hadoop.fs.s3a.S3AInstrumentation presto:default> select * from test_table; Query 20190107_135610_00028_8r2c8 failed: tried to access method org.apache.hadoop.metrics2.lib.MutableCounterLong.(Lorg/apache/hadoop/metrics2/MetricsInfo;J)V from class org.apache.hadoop.fs.s3a.S3AInstrumentation {code} The catalog appears to have been picked up okay as show tables works as expected as does describing the table it is just when actually trying to access the data that we see the error. We configured presto as per the examples here: [http://carbondata.apache.org/quick-start-guide.html] Querying from Spark works okay however it is vital for our use case that presto also works and with S3. Amazon EMR version 5.19 Spark 2.3.2 Hadoop 2.8.5 Presto 0.212 Stack trace from presto server log {code:java} 2019-01-07T12:19:57.562Z WARN statement-response-4 com.facebook.presto.server.ThrowableMapper Request failed for /v1/statement/20190107_121957_4_k6t5p/1 java.lang.IllegalAccessError: tried to access method org.apache.hadoop.metrics2.lib.MutableCounterLong.(Lorg/apache/hadoop/metrics2/MetricsInfo;J)V from class org.apache.hadoop.fs.s3a.S3AInstrumentation at org.apache.hadoop.fs.s3a.S3AInstrumentation.streamCounter(S3AInstrumentation.java:194) at org.apache.hadoop.fs.s3a.S3AInstrumentation.streamCounter(S3AInstrumentation.java:216) at org.apache.hadoop.fs.s3a.S3AInstrumentation.(S3AInstrumentation.java:139) at org.apache.hadoop.fs.s3a.S3AFileSystem.initialize(S3AFileSystem.java:174) at org.apache.hadoop.fs.FileSystem.createFileSystem(FileSystem.java:2669) at org.apache.hadoop.fs.FileSystem.access$200(FileSystem.java:94) at org.apache.hadoop.fs.FileSystem$Cache.getInternal(FileSystem.java:2703) at org.apache.hadoop.fs.FileSystem$Cache.get(FileSystem.java:2685) at org.apache.hadoop.fs.FileSystem.get(FileSystem.java:373) at org.apache.hadoop.fs.Path.getFileSystem(Path.java:295) at org.apache.carbondata.core.datastore.filesystem.AbstractDFSCarbonFile.(AbstractDFSCarbonFile.java:74) at org.apache.carbondata.core.datastore.filesystem.AbstractDFSCarbonFile.(AbstractDFSCarbonFile.java:66) at org.apache.carbondata.core.datastore.filesystem.HDFSCarbonFile.(HDFSCarbonFile.java:41) at org.apache.carbondata.core.datastore.filesystem.S3CarbonFile.(S3CarbonFile.java:41) at org.apache.carbondata.core.datastore.impl.DefaultFileTypeProvider.getCarbonFile(DefaultFileTypeProvider.java:53) at org.apache.carbondata.core.datastore.impl.FileFactory.getCarbonFile(FileFactory.java:102) at org.apache.carbondata.presto.impl.CarbonTableReader.updateCarbonFile(CarbonTableReader.java:202) at org.apache.carbondata.presto.impl.CarbonTableReader.updateSchemaList(CarbonTableReader.java:216) at org.apache.carbondata.presto.impl.CarbonTableReader.getSchemaNames(CarbonTableReader.java:189) at org.apache.carbondata.presto.CarbondataMetadata.listSchemaNamesInternal(CarbondataMetadata.java:86) at org.apache.carbondata.presto.CarbondataMetadata.getTableMetadata(CarbondataMetadata.java:135) at org.apache.carbondata.presto.CarbondataMetadata.getTableMetadataInternal(CarbondataMetadata.java:240) at org.apache.carbondata.presto.CarbondataMetadata.getTableMetadata(CarbondataMetadata.java:232) at com.facebook.presto.spi.connector.classloader.ClassLoaderSafeConnectorMetadata.getTableMetadata(ClassLoaderSafeConnectorMetadata.java:145) at com.facebook.presto.metadata.MetadataManager.getTableMetadata(MetadataManager.java:388) at com.facebook.presto.sql.analyzer.StatementAnalyzer$Visitor.visitTable(StatementAnalyzer.java:850) at com.facebook.presto.sql.analyzer.StatementAnalyzer$Visitor.visitTable(StatementAnalyzer.java:258) at com.facebook.presto.sql.tree.Table.accept(Table.java:53) at com.facebook.presto.sql.tree.AstVisitor.process(AstVisitor.java:27) at com.facebook.presto.sql.analyzer.StatementAnalyzer$Visitor.process(StatementAnalyzer.java:270) at com.facebook.presto.sql.analyzer.StatementAnalyzer$Visitor.analyzeFrom(StatementAnalyzer.java:1772) at com.facebook.presto.sql.analyzer.StatementAnalyzer$Visitor.visitQuerySpecification(StatementAnalyzer.java:954) at com.facebook.presto.sql.analyzer.StatementAnalyzer$Visitor.visitQuerySpecification(StatementAnalyzer.java:258) at com.facebook.presto.sql.tree.QuerySpecification.accept(QuerySpecification.java:127) at com.facebook.presto.sql.tree.AstVisitor.process(AstVisitor.java:27) at com.facebook.presto.sql.analyzer.StatementAnalyzer$Visi
[jira] [Updated] (CARBONDATA-3234) Unable to read data from carbondata table stored in S3 using Presto running on EMR
[ https://issues.apache.org/jira/browse/CARBONDATA-3234?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] charles horrell updated CARBONDATA-3234: Summary: Unable to read data from carbondata table stored in S3 using Presto running on EMR (was: Unable to read data from carbondata table stored in S3 with Presto running on EMR) > Unable to read data from carbondata table stored in S3 using Presto running > on EMR > -- > > Key: CARBONDATA-3234 > URL: https://issues.apache.org/jira/browse/CARBONDATA-3234 > Project: CarbonData > Issue Type: Bug > Components: presto-integration > Environment: Amazon EMR 5.19 >Reporter: charles horrell >Priority: Major > > We are unable to use presto to query a carbondata table stored in S3. > {code:java} > presto:default> select count(*) from test_table; > Query 20190107_135333_00026_8r2c8 failed: tried to access method > org.apache.hadoop.metrics2.lib.MutableCounterLong.(Lorg/apache/hadoop/metrics2/MetricsInfo;J)V > from class org.apache.hadoop.fs.s3a.S3AInstrumentation > > presto:default> select * from test_table; > Query 20190107_135610_00028_8r2c8 failed: tried to access method > org.apache.hadoop.metrics2.lib.MutableCounterLong.(Lorg/apache/hadoop/metrics2/MetricsInfo;J)V > from class org.apache.hadoop.fs.s3a.S3AInstrumentation > {code} > The catalog appears to have been picked up okay as show tables works as > expected as does describing the table it is just when actually trying to > access the data that we see the error. > We configured presto as per the examples here: > [http://carbondata.apache.org/quick-start-guide.html] > Querying from Spark works okay however it is vital for our use case that > presto also works and with S3. > Amazon EMR version 5.19 > Spark 2.3.2 > Hadoop 2.8.5 > Presto 0.212 -- This message was sent by Atlassian JIRA (v7.6.3#76005)
[jira] [Updated] (CARBONDATA-3234) Unable to read data from carbondata table stored in S3 with Presto running on EMR
[ https://issues.apache.org/jira/browse/CARBONDATA-3234?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] charles horrell updated CARBONDATA-3234: Description: We are unable to use presto to query a carbondata table stored in S3. {code:java} presto:default> select count(*) from test_table; Query 20190107_135333_00026_8r2c8 failed: tried to access method org.apache.hadoop.metrics2.lib.MutableCounterLong.(Lorg/apache/hadoop/metrics2/MetricsInfo;J)V from class org.apache.hadoop.fs.s3a.S3AInstrumentation presto:default> select * from test_table; Query 20190107_135610_00028_8r2c8 failed: tried to access method org.apache.hadoop.metrics2.lib.MutableCounterLong.(Lorg/apache/hadoop/metrics2/MetricsInfo;J)V from class org.apache.hadoop.fs.s3a.S3AInstrumentation {code} The catalog appears to have been picked up okay as show tables works as expected as does describing the table it is just when actually trying to access the data that we see the error. We configured presto as per the examples here: [http://carbondata.apache.org/quick-start-guide.html] Querying from Spark works okay however it is vital for our use case that presto also works and with S3. Amazon EMR version 5.19 Spark 2.3.2 Hadoop 2.8.5 Presto 0.212 was: We are unable to use presto to query a carbondata table stored in S3. {code:java} presto:default> select count(*) from test_table; Query 20190107_135333_00026_8r2c8 failed: tried to access method org.apache.hadoop.metrics2.lib.MutableCounterLong.(Lorg/apache/hadoop/metrics2/MetricsInfo;J)V from class org.apache.hadoop.fs.s3a.S3AInstrumentation presto:default> select * test_table; Query 20190107_135610_00028_8r2c8 failed: tried to access method org.apache.hadoop.metrics2.lib.MutableCounterLong.(Lorg/apache/hadoop/metrics2/MetricsInfo;J)V from class org.apache.hadoop.fs.s3a.S3AInstrumentation {code} The catalog appears to have been picked up okay as show tables works as expected as does describing the table it is just when actually trying to access the data that we see the error. We configured presto as per the examples here: [http://carbondata.apache.org/quick-start-guide.html] Querying from Spark works okay however it is vital for our use case that presto also works and with S3. Amazon EMR version 5.19 Spark 2.3.2 Hadoop 2.8.5 Presto 0.212 > Unable to read data from carbondata table stored in S3 with Presto running on > EMR > - > > Key: CARBONDATA-3234 > URL: https://issues.apache.org/jira/browse/CARBONDATA-3234 > Project: CarbonData > Issue Type: Bug > Components: presto-integration > Environment: Amazon EMR 5.19 >Reporter: charles horrell >Priority: Major > > We are unable to use presto to query a carbondata table stored in S3. > {code:java} > presto:default> select count(*) from test_table; > Query 20190107_135333_00026_8r2c8 failed: tried to access method > org.apache.hadoop.metrics2.lib.MutableCounterLong.(Lorg/apache/hadoop/metrics2/MetricsInfo;J)V > from class org.apache.hadoop.fs.s3a.S3AInstrumentation > > presto:default> select * from test_table; > Query 20190107_135610_00028_8r2c8 failed: tried to access method > org.apache.hadoop.metrics2.lib.MutableCounterLong.(Lorg/apache/hadoop/metrics2/MetricsInfo;J)V > from class org.apache.hadoop.fs.s3a.S3AInstrumentation > {code} > The catalog appears to have been picked up okay as show tables works as > expected as does describing the table it is just when actually trying to > access the data that we see the error. > We configured presto as per the examples here: > [http://carbondata.apache.org/quick-start-guide.html] > Querying from Spark works okay however it is vital for our use case that > presto also works and with S3. > Amazon EMR version 5.19 > Spark 2.3.2 > Hadoop 2.8.5 > Presto 0.212 -- This message was sent by Atlassian JIRA (v7.6.3#76005)
[jira] [Updated] (CARBONDATA-3234) Unable to read data from carbondata table stored in S3 with Presto running on EMR
[ https://issues.apache.org/jira/browse/CARBONDATA-3234?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] charles horrell updated CARBONDATA-3234: Description: After carbondata table stored in S3 we are unable to query with presto and get the following error: {code:java} presto:default> select count(*) from test_table; Query 20190107_135333_00026_8r2c8 failed: tried to access method org.apache.hadoop.metrics2.lib.MutableCounterLong.(Lorg/apache/hadoop/metrics2/MetricsInfo;J)V from class org.apache.hadoop.fs.s3a.S3AInstrumentation presto:default> select * test_table; Query 20190107_135610_00028_8r2c8 failed: tried to access method org.apache.hadoop.metrics2.lib.MutableCounterLong.(Lorg/apache/hadoop/metrics2/MetricsInfo;J)V from class org.apache.hadoop.fs.s3a.S3AInstrumentation {code} The catalog appears to have been picked up okay as show tables works as expected as does describing the table it is just when actually trying to access the data that we see the error. We configured presto as per the examples here: [http://carbondata.apache.org/quick-start-guide.html] Querying from Spark works okay however it is vital for our use case that presto also works and with S3. Amazon EMR version 5.19 Spark 2.3.2 Hadoop 2.8.5 Presto 0.212 was: Once creating a carbondata table stored in S3 we are unable to query with presto and get the following error: {code:java} presto:default> select count(*) from test_table; Query 20190107_135333_00026_8r2c8 failed: tried to access method org.apache.hadoop.metrics2.lib.MutableCounterLong.(Lorg/apache/hadoop/metrics2/MetricsInfo;J)V from class org.apache.hadoop.fs.s3a.S3AInstrumentation presto:default> select * test_table; Query 20190107_135610_00028_8r2c8 failed: tried to access method org.apache.hadoop.metrics2.lib.MutableCounterLong.(Lorg/apache/hadoop/metrics2/MetricsInfo;J)V from class org.apache.hadoop.fs.s3a.S3AInstrumentation {code} The catalog appears to have been picked up okay as show tables works as expected as does describing the table it is just when actually trying to access the data that we see the error. We configured presto as per the examples here: [http://carbondata.apache.org/quick-start-guide.html] Querying from Spark works okay however it is vital for our use case that presto also works and with S3. Amazon EMR version 5.19 Spark 2.3.2 Hadoop 2.8.5 Presto 0.212 Summary: Unable to read data from carbondata table stored in S3 with Presto running on EMR (was: Unable to read data from carbondata table stored in S3 from Presto running on EMR) > Unable to read data from carbondata table stored in S3 with Presto running on > EMR > - > > Key: CARBONDATA-3234 > URL: https://issues.apache.org/jira/browse/CARBONDATA-3234 > Project: CarbonData > Issue Type: Bug > Components: presto-integration > Environment: Amazon EMR 5.19 >Reporter: charles horrell >Priority: Major > > After carbondata table stored in S3 we are unable to query with presto and > get the following error: > {code:java} > presto:default> select count(*) from test_table; > Query 20190107_135333_00026_8r2c8 failed: tried to access method > org.apache.hadoop.metrics2.lib.MutableCounterLong.(Lorg/apache/hadoop/metrics2/MetricsInfo;J)V > from class org.apache.hadoop.fs.s3a.S3AInstrumentation > > presto:default> select * test_table; > Query 20190107_135610_00028_8r2c8 failed: tried to access method > org.apache.hadoop.metrics2.lib.MutableCounterLong.(Lorg/apache/hadoop/metrics2/MetricsInfo;J)V > from class org.apache.hadoop.fs.s3a.S3AInstrumentation > {code} > The catalog appears to have been picked up okay as show tables works as > expected as does describing the table it is just when actually trying to > access the data that we see the error. > We configured presto as per the examples here: > [http://carbondata.apache.org/quick-start-guide.html] > Querying from Spark works okay however it is vital for our use case that > presto also works and with S3. > Amazon EMR version 5.19 > Spark 2.3.2 > Hadoop 2.8.5 > Presto 0.212 -- This message was sent by Atlassian JIRA (v7.6.3#76005)
[jira] [Updated] (CARBONDATA-3234) Unable to read data from carbondata table stored in S3 from Presto running on EMR
[ https://issues.apache.org/jira/browse/CARBONDATA-3234?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] charles horrell updated CARBONDATA-3234: Environment: Amazon EMR 5.19 Description: Once creating a carbondata table stored in S3 we are unable to query with presto and get the following error: {code:java} presto:default> select count(*) from test_table; Query 20190107_135333_00026_8r2c8 failed: tried to access method org.apache.hadoop.metrics2.lib.MutableCounterLong.(Lorg/apache/hadoop/metrics2/MetricsInfo;J)V from class org.apache.hadoop.fs.s3a.S3AInstrumentation presto:default> select * test_table; Query 20190107_135610_00028_8r2c8 failed: tried to access method org.apache.hadoop.metrics2.lib.MutableCounterLong.(Lorg/apache/hadoop/metrics2/MetricsInfo;J)V from class org.apache.hadoop.fs.s3a.S3AInstrumentation {code} The catalog appears to have been picked up okay as show tables works as expected as does describing the table it is just when actually trying to access the data that we see the error. We configured presto as per the examples here: [http://carbondata.apache.org/quick-start-guide.html] Querying from Spark works okay however it is vital for our use case that presto also works and with S3. Amazon EMR version 5.19 Spark 2.3.2 Hadoop 2.8.5 Presto 0.212 Component/s: presto-integration > Unable to read data from carbondata table stored in S3 from Presto running on > EMR > - > > Key: CARBONDATA-3234 > URL: https://issues.apache.org/jira/browse/CARBONDATA-3234 > Project: CarbonData > Issue Type: Bug > Components: presto-integration > Environment: Amazon EMR 5.19 >Reporter: charles horrell >Priority: Major > > Once creating a carbondata table stored in S3 we are unable to query with > presto and get the following error: > {code:java} > presto:default> select count(*) from test_table; > Query 20190107_135333_00026_8r2c8 failed: tried to access method > org.apache.hadoop.metrics2.lib.MutableCounterLong.(Lorg/apache/hadoop/metrics2/MetricsInfo;J)V > from class org.apache.hadoop.fs.s3a.S3AInstrumentation > > presto:default> select * test_table; > Query 20190107_135610_00028_8r2c8 failed: tried to access method > org.apache.hadoop.metrics2.lib.MutableCounterLong.(Lorg/apache/hadoop/metrics2/MetricsInfo;J)V > from class org.apache.hadoop.fs.s3a.S3AInstrumentation > {code} > The catalog appears to have been picked up okay as show tables works as > expected as does describing the table it is just when actually trying to > access the data that we see the error. > We configured presto as per the examples here: > [http://carbondata.apache.org/quick-start-guide.html] > Querying from Spark works okay however it is vital for our use case that > presto also works and with S3. > Amazon EMR version 5.19 > Spark 2.3.2 > Hadoop 2.8.5 > Presto 0.212 -- This message was sent by Atlassian JIRA (v7.6.3#76005)
[jira] [Created] (CARBONDATA-3234) Unable to read data from carbondata table stored in S3 from Presto running on EMR
charles horrell created CARBONDATA-3234: --- Summary: Unable to read data from carbondata table stored in S3 from Presto running on EMR Key: CARBONDATA-3234 URL: https://issues.apache.org/jira/browse/CARBONDATA-3234 Project: CarbonData Issue Type: Bug Reporter: charles horrell -- This message was sent by Atlassian JIRA (v7.6.3#76005)