【AWS re:Invent 2016】EMRのベストプラクティス
概要 タイトルの通り、「EMRのベストプラクティス」についてのセッションを聞きました。 English Onlyなので聞き逃したことがあるかもしれませんが、まとめてみました。 EMRとは Hadoopフレームワークが提供…
概要 タイトルの通り、「EMRのベストプラクティス」についてのセッションを聞きました。 English Onlyなので聞き逃したことがあるかもしれませんが、まとめてみました。 EMRとは Hadoopフレームワークが提供…
3年ぶり2回目のAWS最大級のイベントAWS re:Invent 2016にやってきました! 日本では使えない?Amazon Echo dotを頂いた事や 会場も3年前は1箇所だったのに2箇所に増えている!といった規模の…
こんにちは、星です。 無事到着してRe:invent二日目を迎えています。 簡単ですが、非ツアー組の道程を紹介していきます。 ツアーについて Re:inventは日本人向けのAWS公式ジャパンツアーが準備さ…
こんにちは。kobataです。 今年初めてAWS最大級のイベントAWS re:Invent 2016に来ています。 来て一番初めにレジストレーションをするのですが、その際にAmazonのEcho dotをもらったので、紹…
概要 いちいちAWSのマネコンに入って、インスタンスを起動してという流れを膠着したい。 Boto3を使用して、インスタンスの起動をSDKを使用して行うものを作ってみました。 ソースコード [crayon-673a710e…
こんにちは、星です。 いよいよAWS Re:invent2016が今週開催です。 AWS re:Invent 2016 https://reinvent.awsevents.com/ 弊社から…
概要 Python SDKのboto3を使って、DynamoDBの操作をしてみました。 テーブルの作成
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
# -*- coding: utf-8 -*- import boto3 from boto3.session import Session dynamodb = boto3.resource('dynamodb') def create_table(): table = dynamodb.create_table( TableName = 'customer', KeySchema =[ { 'AttributeName' : 'id', 'KeyType' : 'HASH' }, { 'AttributeName' : 'name', 'KeyType' : 'RANGE' } ], AttributeDefinitions = [ { 'AttributeName' : 'id', 'AttributeType' : 'S' }, { 'AttributeName' : 'name', 'AttributeType' : 'S' } ], ProvisionedThroughput = { 'ReadCapacityUnits' : 1, 'WriteCapacityUnits' : 1 } ) table.meta.client.get_waiter('table_exists').wait(TableName = 'customer') print (table.item_count) create_table() |
https://github.com/handa3…
概要 Gitのコマンドについて簡単ではありますが、良く使うコマンドをまとめました。 GUIよりもCUI派です。 コマンドまとめ ブランチの確認
1 |
git branch -a |
ブランチの…
概要 DynamoDBの操作をBoto3で作ってみました。 簡単なデータの挿入とデータの読み込みです。 データのInsert
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# -*- coding: utf-8 -*- import boto3 from boto3.session import Session dynamodb = boto3.resource('dynamodb', region_name='ap-northeast-1') table = dynamodb.Table('customer') id = '1' name = 'handa' response = table.put_item( Item = { 'id' : id, 'name' : name } ) |
https://github…
The SuperUser usually known as root in Unix-like systems, it is the first user created at the installation of …