Конференция Arenadata
Новое время — новый Greenplum
Мы приглашаем вас принять участие в конференции, посвященной будущему Open-Source Greenplum 19 сентября в 18:00:00 UTC +3. Встреча будет проходить в гибридном формате — и офлайн, и онлайн. Онлайн-трансляция будет доступна для всех желающих.
Внезапное закрытие Greenplum его владельцем — компанией Broadcom - стало неприятным сюрпризом для всех, кто использует или планирует начать использовать решения на базе этой технологии. Многие ожидают выхода стабильной версии Greenplum 7 и надеются на её дальнейшее активное развитие.
Arenadata не могла допустить, чтобы разрабатываемый годами Open-Source проект Greenplum прекратил своё существование, поэтому 19 сентября мы представим наш ответ на данное решение Broadcom, а участники сообщества получат исчерпывающие разъяснения на все вопросы о дальнейшей судьбе этой технологии.

На конференции вас ждёт обсуждение следующих тем:

  • План возрождения Greenplum;
  • Дорожная карта;
  • Экспертное обсуждение и консультации.
Осталось до события

put

Copies a single file or multiple files from the local file system to the destination file system. It also reads input from stdin and writes to the destination file system if the source is set to -. Copying fails if the file already exists, unless the -f flag is given.

Returns 0 on success and -1 on error.

The usage is as follows:

$ hadoop fs -put [-f] [-p] [-l] [-d] [-t <thread count>] [ - | <localsrc1> .. ]. <dst>
Arguments

-p

Preserves access and modification time, ownership, and the permissions (assuming the permissions can be propagated across filesystems)

-f

Overwrites the destination if it already exists

-l

Allows DataNode to lazily persist a file to disk; forces the replication factor of 1. This flag results in reduced durability. Be cautious when using this argument

-d

Skips the creation of the temporary file with the suffix .COPYING

Example:

$ hadoop fs -put localfile /user/hadoop/hadoopfile
$ hadoop fs -put -f localfile1 localfile2 /user/hadoop/hadoopdir
$ hadoop fs -put -d localfile hdfs://nn.example.com/hadoop/hadoopfile
$ hadoop fs -put - hdfs://nn.example.com/hadoop/hadoopfile
Found a mistake? Seleсt text and press Ctrl+Enter to report it