[ https://issues.apache.org/jira/browse/HIVE-21671?focusedWorklogId=238762&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-238762 ]
ASF GitHub Bot logged work on HIVE-21671: ----------------------------------------- Author: ASF GitHub Bot Created on: 07/May/19 20:09 Start Date: 07/May/19 20:09 Worklog Time Spent: 10m Work Description: sankarh commented on pull request #615: HIVE-21671: Replicate Streaming ingestion with transactional batch size as 1. URL: https://github.com/apache/hive/pull/615#discussion_r281809652 ########## File path: itests/hive-unit/src/test/java/org/apache/hadoop/hive/ql/parse/TestReplicationOfHiveStreaming.java ########## @@ -0,0 +1,369 @@ +/* + * 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.hadoop.hive.ql.parse; + +import org.apache.hadoop.fs.FileSystem; +import org.apache.hadoop.hdfs.MiniDFSCluster; +import org.apache.hadoop.hive.conf.HiveConf; +import org.apache.hadoop.hive.metastore.conf.MetastoreConf; +import org.apache.hadoop.hive.metastore.messaging.json.gzip.GzipJSONMessageEncoder; +import org.apache.hadoop.hive.shims.Utils; +import org.apache.hive.streaming.HiveStreamingConnection; +import org.apache.hive.streaming.StrictDelimitedInputWriter; +import org.apache.hive.streaming.StreamingConnection; + +import org.junit.rules.TestName; +import org.junit.After; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Rule; +import org.junit.Test; +import org.junit.BeforeClass; +import org.junit.AfterClass; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import java.io.IOException; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.Map; + +import static org.apache.hadoop.hive.metastore.ReplChangeManager.SOURCE_OF_REPLICATION; + +/** + * TestReplicationOfHiveStreaming - test replication for streaming ingest on ACID tables + */ +public class TestReplicationOfHiveStreaming { + + @Rule + public final TestName testName = new TestName(); + + protected static final Logger LOG = LoggerFactory.getLogger(TestReplicationOfHiveStreaming.class); + private static WarehouseInstance primary; + private static WarehouseInstance replica; + private static String primaryDbName; + private static String replicatedDbName; + + @BeforeClass + public static void classLevelSetup() throws Exception { + HashMap<String, String> overrides = new HashMap<>(); + overrides.put(MetastoreConf.ConfVars.EVENT_MESSAGE_FACTORY.getHiveName(), + GzipJSONMessageEncoder.class.getCanonicalName()); + + internalBeforeClassSetup(overrides, TestReplicationOfHiveStreaming.class); + } + + static void internalBeforeClassSetup(Map<String, String> overrides, + Class clazz) throws Exception { + + HiveConf conf = new HiveConf(clazz); + conf.set("dfs.client.use.datanode.hostname", "true"); + conf.set("hadoop.proxyuser." + Utils.getUGI().getShortUserName() + ".hosts", "*"); + MiniDFSCluster miniDFSCluster = + new MiniDFSCluster.Builder(conf).numDataNodes(1).format(true).build(); + HashMap<String, String> acidEnableConf = new HashMap<String, String>() {{ + put("fs.defaultFS", miniDFSCluster.getFileSystem().getUri().toString()); + put("hive.support.concurrency", "true"); Review comment: Anyways, added it. ---------------------------------------------------------------- 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: us...@infra.apache.org Issue Time Tracking ------------------- Worklog Id: (was: 238762) Time Spent: 2.5h (was: 2h 20m) > Replicate Streaming ingestion with transactional batch size as 1. > ----------------------------------------------------------------- > > Key: HIVE-21671 > URL: https://issues.apache.org/jira/browse/HIVE-21671 > Project: Hive > Issue Type: Sub-task > Components: repl, Streaming, Transactions > Affects Versions: 4.0.0 > Reporter: Sankar Hariappan > Assignee: Sankar Hariappan > Priority: Major > Labels: DR, pull-request-available, replication > Attachments: HIVE-21671.01.patch > > Time Spent: 2.5h > Remaining Estimate: 0h > > Replication streaming ingest HiveStreamingConnection on ACID tables with > transaction batch size as 1. -- This message was sent by Atlassian JIRA (v7.6.3#76005)