[openstack-dev] [Designate] Setting after adding new BIND9 server

2015-06-22 Thread Matsuda, Kenichiro
Hi,

I'm using the "designate stable/kilo" and BIND9.

After new Bind9 server created, 
how should I set the existing domain information to new BIND9 server?
(Is there this setting function in Designate?)

Could you please advise me for it?

Best Regards,
Kenichiro Matsuda.

__
OpenStack Development Mailing List (not for usage questions)
Unsubscribe: openstack-dev-requ...@lists.openstack.org?subject:unsubscribe
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev


Re: [openstack-dev] [swift] a way of checking replicate completion on swift cluster

2014-11-24 Thread Matsuda, Kenichiro
Hi,

Thanks for your advice.

I understood that the logs are necessary to judge whether no failure on 
object-replicator.
And also, I thought that the recon info of object-replicator having failure 
(just like the recon info of account-replicator and container-replicator) 
is useful.
Are there any reason to not included failure in recon?

Kenichiro Matsuda.

> -Original Message-
> From: Clay Gerrard [mailto:clay.gerr...@gmail.com] 
> Sent: Tuesday, November 25, 2014 5:53 AM
> To: OpenStack Development Mailing List (not for usage questions)
> Subject: Re: [openstack-dev] [swift] a way of checking replicate completion 
> on swift cluster
>
> replication logs
>
> On Thu, Nov 20, 2014 at 9:32 PM, Matsuda, Kenichiro 
>  wrote:
> Hi,
>
> Thank you for the info.
>
> I was able to get replication info easily by swift-recon API.
> But, I wasn't able to judge whether no failure from recon info of 
> object-replicator.
>
> Could you please advise me for a way of get object-replicator's failure info?

___
OpenStack-dev mailing list
OpenStack-dev@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev


Re: [openstack-dev] [swift] a way of checking replicate completion on swift cluster

2014-11-20 Thread Matsuda, Kenichiro
Hi,

Thank you for the info.

I was able to get replication info easily by swift-recon API.
But, I wasn't able to judge whether no failure from recon info of 
object-replicator.

Could you please advise me for a way of get object-replicator's failure info?

[replication info from recon]
* account
--
# curl http://192.168.1.11:6002/recon/replication/account | python -mjson.tool
{
"replication_last": 1416354262.7157061,
"replication_stats": {
"attempted": 20,
"diff": 0,
"diff_capped": 0,
"empty": 0,
"failure": 20,
"hashmatch": 0,
"no_change": 40,
"remote_merge": 0,
"remove": 0,
"rsync": 0,
"start": 1416354240.9761429,
"success": 40,
"ts_repl": 0
},
"replication_time": 21.739563226699829
}
--

* container
--
# curl http://192.168.1.11:6002/recon/replication/container | python -mjson.tool
{
"replication_last": 1416353436.9448521,
"replication_stats": {
"attempted": 13346,
"diff": 0,
"diff_capped": 0,
"empty": 0,
"failure": 870,
"hashmatch": 0,
"no_change": 1908,
"remote_merge": 0,
"remove": 0,
"rsync": 0,
"start": 1416349377.3627851,
"success": 1908,
"ts_repl": 0
},
"replication_time": 4059.5820670127869
}
--

* object
--
# curl http://192.168.1.11:6002/recon/replication | python -mjson.tool
{
"object_replication_last": 1416334368.60865,
"object_replication_time": 2316.5563162644703 
} 
# curl http://192.168.1.11:6002/recon/replication/object | python -mjson.tool
{
"object_replication_last": 1416334368.60865,
"object_replication_time": 2316.5563162644703 
}
--

Best Regards,
Kenichiro Matsuda.


From: Clay Gerrard [mailto:clay.gerr...@gmail.com] 
Sent: Friday, November 21, 2014 4:22 AM
To: OpenStack Development Mailing List (not for usage questions)
Subject: Re: [openstack-dev] [swift] a way of checking replicate completion on 
swift cluster

You might check if the swift-recon tool has the data you're looking for.  It 
can report the last completed replication pass time across nodes in the ring.

On Thu, Nov 20, 2014 at 1:28 AM, Matsuda, Kenichiro 
 wrote:
Hi,

I would like to know about a way of checking replicate completion on swift 
cluster.
(e.g. after rebalanced Ring)

I found the way of using swift-dispersion-report from Administrator's Guide.
But, this way is not enough, because swift-dispersion-report can't checking
replicate completion for other data that made by not swift-dispersion-populate.

And also, I found the way of using replicator's logs from Q&A.
But, I would like to more easy way, because check of below logs is very heavy.

  (account/container/object)-replicator * All storage node on swift cluster

Could you please advise me for it?

Findings:
  Administrator's Guide  Cluster Health
    http://docs.openstack.org/developer/swift/admin_guide.html#cluster-health
  how to check replicator work complete
    
https://ask.openstack.org/en/question/18654/how-to-check-replicator-work-complete/

Best Regards,
Kenichiro Matsuda.


___
OpenStack-dev mailing list
OpenStack-dev@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev

___
OpenStack-dev mailing list
OpenStack-dev@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev


[openstack-dev] [swift] a way of checking replicate completion on swift cluster

2014-11-20 Thread Matsuda, Kenichiro
Hi,

I would like to know about a way of checking replicate completion on swift 
cluster.
(e.g. after rebalanced Ring)

I found the way of using swift-dispersion-report from Administrator's Guide.
But, this way is not enough, because swift-dispersion-report can't checking 
replicate completion for other data that made by not swift-dispersion-populate.

And also, I found the way of using replicator's logs from Q&A.
But, I would like to more easy way, because check of below logs is very heavy.

  (account/container/object)-replicator * All storage node on swift cluster

Could you please advise me for it?

Findings:
  Administrator's Guide  Cluster Health
http://docs.openstack.org/developer/swift/admin_guide.html#cluster-health
  how to check replicator work complete

https://ask.openstack.org/en/question/18654/how-to-check-replicator-work-complete/

Best Regards,
Kenichiro Matsuda.


___
OpenStack-dev mailing list
OpenStack-dev@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev


Re: [openstack-dev] [swift] Use FQDN in Ring files instead of "ip"

2014-07-23 Thread Matsuda, Kenichiro
Hi,

Thank you for the info.
I was able to understand that hostname support is under developing.

Best Regards,
Kenichiro Matsuda.


___
OpenStack-dev mailing list
OpenStack-dev@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev


[openstack-dev] [swift] Use FQDN in Ring files instead of "ip"

2014-07-22 Thread Matsuda, Kenichiro
Hi,

I want to use FQDN in Ring files instead of "ip".
I tried the following Swift APIs with using FQDN and it succeeded.
(I used swift1.13.1.)

  - PUT Container
  - PUT Object

In some documents there is no info for using FQDN in Ring files.

  - swift 1.13.1 documentation The Rings > List of Devices
  
http://docs.openstack.org/developer/swift/1.13.1/overview_ring.html#list-of-devices
  -
  The IP address of the server containing the device.
  -
  - swift-ring-builder's USAGE
  -
  swift-ring-builder  add
  [--region ] --zone  --ip  --port 
  --replication-ip  --replication-port 
  --device  --meta  --weight 
  -

I would like to know whether FQDN in Ring files supports and/or how to evaluate 
to support FQDN in Ring files.

Could you please advise me for it?

Best Regards,
Kenichiro Matsuda.


___
OpenStack-dev mailing list
OpenStack-dev@lists.openstack.org
http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev