| 更新: | 2020-02-01 | 
|---|---|
| 作者: | @voluntas | 
| バージョン: | 2020.1 | 
| URL: | https://voluntas.github.io/ | 
UPDATE (March 2020, thanks @ic): I don't know the exact AMI version but yum install docker now works on the latest Amazon Linux 2. The instructions below may still be relevant depending on the vintage AMI you are using.
Amazon changed the install in Linux 2. One no-longer using 'yum' See: https://aws.amazon.com/amazon-linux-2/release-notes/
sudo amazon-linux-extras install docker
sudo service docker start- 日時: 2025-02-16
 - 作: 時雨堂
 - バージョン: 2025.1
 - URL: https://sora-labo.shiguredo.jp/
 
Sora Labo は WebRTC SFU Sora を検証目的であれば無料で試せるサービスです。
| sudo su | |
| yum --enablerepo=extras install epel-release | |
| yum -y install patch dkms kernel-devel perl | |
| yum update | |
| #Required for kernel num 5: | |
| yum --enablerepo=elrepo-kernel -y install kernel-ml-devel | |
| reboot | 
WebRTC is a protocol that has been standardized in recent years among major browsers like Chrome, Firefox, Opera and the Android Browsers. Plugins/Native Implementations are available on IE/Edge/Safari and iOS/Android basically providing a relatively global protocol for real time media streams. However WebRTC is a P2P protocol which means that if a user wishes to broadcast his/her video to multiple users he/she needs to individually send that broadcast to each participant. This works on a small scale, but degrades quickly on a large scale due to bandwidth deterioration.
One possible solution is to let the user stream his/her media to a server and the server in turn splits the media streams to the subscribers. There are two technical ways to do this. A Selective Forwarding Unit (SFU) which simply forwards streams, and a Multipoint Control Unit (MCU) which essentially does the same thing but lowers bandwidth usage by packaging streams together.
| #!/usr/bin/env python | |
| import base64 | |
| from Crypto import Random | |
| import boto3 | |
| from Crypto.Cipher import AES | |
| PAD = lambda s: s + (32 - len(s) % 32) * ' ' | |
Kafka 0.11.0.0 (Confluent 3.3.0) added support to manipulate offsets for a consumer group via cli kafka-consumer-groups command.
- List the topics to which the group is subscribed
 
kafka-consumer-groups --bootstrap-server <kafkahost:port> --group <group_id> --describeNote the values under "CURRENT-OFFSET" and "LOG-END-OFFSET". "CURRENT-OFFSET" is the offset where this consumer group is currently at in each of the partitions.
- Reset the consumer offset for a topic (preview)
 
| 更新: | 2017-09-26 | 
|---|---|
| 作者: | @voluntas | 
| 作者サイト: | http://voluntas.github.io/ | 
| バージョン: | 1.2.1 | 
| セッション日時: | 2017-09-24 14:20 - 15:00 | 
| セッション場所: | 5号館3F |