CarbonDataQA2 commented on pull request #4141: URL: https://github.com/apache/carbondata/pull/4141#issuecomment-851853858 Build Failed with Spark 2.3.4, Please check CI http://121.244.95.60:12602/job/ApacheCarbonPRBuilder2.3/5464/ -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
vikramahuja1001 commented on pull request #4141: URL: https://github.com/apache/carbondata/pull/4141#issuecomment-851854059 retest this please -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
CarbonDataQA2 commented on pull request #4141: URL: https://github.com/apache/carbondata/pull/4141#issuecomment-851913152 Build Success with Spark 2.4.5, Please check CI http://121.244.95.60:12602/job/ApacheCarbon_PR_Builder_2.4.5/3721/ -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
CarbonDataQA2 commented on pull request #4141: URL: https://github.com/apache/carbondata/pull/4141#issuecomment-851917782 Build Success with Spark 2.3.4, Please check CI http://121.244.95.60:12602/job/ApacheCarbonPRBuilder2.3/5465/ -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
CarbonDataQA2 commented on pull request #4141: URL: https://github.com/apache/carbondata/pull/4141#issuecomment-852859571 Build Success with Spark 2.4.5, Please check CI http://121.244.95.60:12602/job/ApacheCarbon_PR_Builder_2.4.5/3728/ -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
CarbonDataQA2 commented on pull request #4141: URL: https://github.com/apache/carbondata/pull/4141#issuecomment-852861111 Build Failed with Spark 2.3.4, Please check CI http://121.244.95.60:12602/job/ApacheCarbonPRBuilder2.3/5472/ -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
CarbonDataQA2 commented on pull request #4141: URL: https://github.com/apache/carbondata/pull/4141#issuecomment-852975102 Build Success with Spark 2.4.5, Please check CI http://121.244.95.60:12602/job/ApacheCarbon_PR_Builder_2.4.5/3730/ -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
CarbonDataQA2 commented on pull request #4141: URL: https://github.com/apache/carbondata/pull/4141#issuecomment-852977056 Build Failed with Spark 2.3.4, Please check CI http://121.244.95.60:12602/job/ApacheCarbonPRBuilder2.3/5474/ -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
CarbonDataQA2 commented on pull request #4141: URL: https://github.com/apache/carbondata/pull/4141#issuecomment-853242957 Build Failed with Spark 2.4.5, Please check CI http://121.244.95.60:12602/job/ApacheCarbon_PR_Builder_2.4.5/3735/ -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
CarbonDataQA2 commented on pull request #4141: URL: https://github.com/apache/carbondata/pull/4141#issuecomment-853249378 Build Success with Spark 2.3.4, Please check CI http://121.244.95.60:12602/job/ApacheCarbonPRBuilder2.3/5479/ -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
vikramahuja1001 commented on a change in pull request #4141: URL: https://github.com/apache/carbondata/pull/4141#discussion_r644521888 ########## File path: core/src/main/java/org/apache/carbondata/core/util/DataTypeUtil.java ########## @@ -439,10 +445,31 @@ public static Object getDataDataTypeForNoDictionaryColumn(String dimensionValue, } } + private static long createTimeInstant(String dimensionValue, String dateFormat) { + String updatedDim = dimensionValue; + if (!dimensionValue.trim().contains(" ")) { + updatedDim += " 00:00:00"; + } + Instant instant = Instant.from(ZonedDateTime + .of(LocalDateTime.parse(updatedDim, DateTimeFormatter.ofPattern(dateFormat)), + ZoneId.systemDefault())); + validateTimeStampRange(instant.getEpochSecond()); + long us = Math.multiplyExact(instant.getEpochSecond(), 1000L); + return Math.addExact(us, instant.getNano() * 1000L); + } + private static Object parseTimestamp(String dimensionValue, String dateFormat) { Date dateToStr; DateFormat dateFormatter = null; long timeValue; + if (Boolean.parseBoolean(CarbonProperties.getInstance().getProperty(CarbonCommonConstants + .CARBON_SPARK_VERSION_SPARK3))) { + try { + return createTimeInstant(dimensionValue, dateFormat); Review comment: code removed -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
vikramahuja1001 commented on a change in pull request #4141: URL: https://github.com/apache/carbondata/pull/4141#discussion_r644521946 ########## File path: core/src/main/java/org/apache/carbondata/core/util/DataTypeUtil.java ########## @@ -439,10 +445,31 @@ public static Object getDataDataTypeForNoDictionaryColumn(String dimensionValue, } } + private static long createTimeInstant(String dimensionValue, String dateFormat) { + String updatedDim = dimensionValue; + if (!dimensionValue.trim().contains(" ")) { + updatedDim += " 00:00:00"; Review comment: code removed -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
vikramahuja1001 commented on a change in pull request #4141: URL: https://github.com/apache/carbondata/pull/4141#discussion_r644524985 ########## File path: examples/spark/src/main/scala/org/apache/carbondata/examples/LuceneIndexExample.scala ########## @@ -30,7 +30,7 @@ object LuceneIndexExample { def main(args: Array[String]) { val spark = ExampleUtils.createSparkSession("LuceneIndexExample") - exampleBody(spark) + exampleBody(spark) Review comment: done -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
vikramahuja1001 commented on a change in pull request #4141: URL: https://github.com/apache/carbondata/pull/4141#discussion_r644537009 ########## File path: core/src/main/java/org/apache/carbondata/core/constants/CarbonCommonConstants.java ########## @@ -2644,5 +2644,4 @@ private CarbonCommonConstants() { public static final String CARBON_MAP_ORDER_PUSHDOWN = "carbon.mapOrderPushDown"; public static final String CARBON_SDK_EMPTY_METADATA_PATH = "emptyMetadataFolder"; - Review comment: done -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
vikramahuja1001 commented on a change in pull request #4141: URL: https://github.com/apache/carbondata/pull/4141#discussion_r644537189 ########## File path: integration/spark/src/main/spark3.1/org/apache/spark/sql/CarbonToSparkAdapter.scala ########## @@ -0,0 +1,734 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.spark.sql + +import java.net.URI +import java.sql.{Date, Timestamp} +import java.time.ZoneId + +import javax.xml.bind.DatatypeConverter + +import scala.annotation.tailrec +import scala.collection.mutable +import scala.collection.mutable.ArrayBuffer +import org.antlr.v4.runtime.tree.TerminalNode +import org.apache.spark.{SparkContext, TaskContext} +import org.apache.spark.rdd.RDD +import org.apache.spark.scheduler.{SparkListener, SparkListenerApplicationEnd} +import org.apache.spark.serializer.Serializer +import org.apache.spark.sql.carbondata.execution.datasources.CarbonFileIndexReplaceRule +import org.apache.spark.sql.catalyst.{CarbonParserUtil, InternalRow, QueryPlanningTracker, TableIdentifier} +import org.apache.spark.sql.catalyst.analysis.{Analyzer, UnresolvedRelation} Review comment: corrected -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
vikramahuja1001 commented on a change in pull request #4141: URL: https://github.com/apache/carbondata/pull/4141#discussion_r644537339 ########## File path: examples/spark/src/main/scala/org/apache/carbondata/examples/StructuredStreamingExample.scala ########## @@ -151,7 +151,7 @@ object StructuredStreamingExample { // Write data from socket stream to carbondata file qry = readSocketDF.writeStream .format("carbondata") - .trigger(ProcessingTime("5 seconds")) + .trigger(CarbonToSparkAdapter.getProcessingTime("5 seconds")) Review comment: added to scala package from spark_version -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
vikramahuja1001 commented on a change in pull request #4141: URL: https://github.com/apache/carbondata/pull/4141#discussion_r644538246 ########## File path: integration/spark/src/main/scala/org/apache/carbondata/spark/load/DataLoadProcessorStepOnSpark.scala ########## @@ -183,7 +183,7 @@ object DataLoadProcessorStepOnSpark { val rowConverter = new RowConverterImpl(conf.getDataFields, conf, badRecordLogger) rowConverter.initialize() - TaskContext.get().addTaskCompletionListener { context => + CarbonToSparkAdapter.addTaskCompletionListener { Review comment: addTaskCompletionListener API change in Spark3.1 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
vikramahuja1001 commented on a change in pull request #4141: URL: https://github.com/apache/carbondata/pull/4141#discussion_r644540782 ########## File path: integration/spark/src/main/scala/org/apache/spark/sql/execution/command/table/CarbonCreateDataSourceTableCommand.scala ########## @@ -78,10 +78,8 @@ case class CarbonCreateDataSourceTableCommand( catalogTable.partitionColumnNames, caseSensitiveAnalysis) val rows = try { - CreateDataSourceTableCommand( - catalogTable, - ignoreIfExists - ).run(sparkSession) + org.apache.spark.sql.execution.CreateDataSourceTableCommand + .createDataSource(catalogTable, ignoreIfExists, sparkSession) Review comment: done -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
vikramahuja1001 commented on a change in pull request #4141: URL: https://github.com/apache/carbondata/pull/4141#discussion_r644544057 ########## File path: integration/spark/src/main/scala/org/apache/spark/sql/parser/CarbonSparkSqlParserUtil.scala ########## @@ -501,40 +321,6 @@ object CarbonSparkSqlParserUtil { } } - /** - * Validates the partition columns and return's A tuple of partition columns and partitioner - * fields. - * - * @param partitionColumns An instance of ColTypeListContext having parser rules for - * column. - * @param colNames <Seq[String]> Sequence of Table column names. - * @param tableProperties <Map[String, String]> Table property map. - * @param partitionByStructFields Seq[StructField] Sequence of partition fields. - * @return <Seq[PartitionerField]> A Seq of partitioner fields. - */ - def validatePartitionFields( Review comment: added to common package -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
In reply to this post by GitBox
vikramahuja1001 commented on a change in pull request #4141: URL: https://github.com/apache/carbondata/pull/4141#discussion_r644544877 ########## File path: integration/spark/src/main/scala/org/apache/spark/sql/secondaryindex/jobs/SparkBlockletIndexLoaderJob.scala ########## @@ -160,9 +160,7 @@ class IndexLoaderRDD( val reader = indexFormat.createRecordReader(inputSplit, attemptContext) val iter = new Iterator[(TableBlockIndexUniqueIdentifier, BlockletIndexDetailsWithSchema)] { // in case of success, failure or cancellation clear memory and stop execution - context.addTaskCompletionListener { _ => - reader.close() - } + CarbonToSparkAdapter.addTaskCompletionListener(reader.close()) Review comment: addTaskCompletionListener API changed in Spark 3.1 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [hidden email] |
Free forum by Nabble | Edit this page |