如何将Pig Storage位置设置为另一个hadoop集群

时间:2015-07-02 04:31:01

标签: hadoop location apache-pig

我正在通过REST API运行PigScript,我想将我的Pig输出存储到另一个hadoop集群。我有什么方法可以将PigStorage设置为其他一些hdfs。

1 个答案:

答案 0 :(得分:2)

您可以使用distcp从一个hdf复制到另一个。

$ hadoop distcp hdfs://namenode1/foo hdfs://namenode2/bar 用于并行地从hadoop文件系统复制大量数据。

public void setCharacteristicNotification(BluetoothGattCharacteristic bluetoothgattcharacteristic, boolean flag)
{
    if(mBluetoothAdapter == null || mBluetoothGatt == null)
    {
        Log.w(TAG, "BluetoothAdapter not initialized");
    } else
    {
        mBluetoothGatt.setCharacteristicNotification(bluetoothgattcharacteristic, flag);
        BluetoothGattDescriptor bluetoothgattdescriptor = bluetoothgattcharacteristic.getDescriptor(UUID.fromString(SampleGattAttributes.CLIENT_CHARACTERISTIC_CONFIG));
        if(bluetoothgattdescriptor != null)
        {       bluetoothgattdescriptor.setValue(BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE);
            mBluetoothGatt.writeDescriptor(bluetoothgattdescriptor);
            return;
        }
    }
}